Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: TECH skip message processing when the message parsing fails #112

Merged
merged 5 commits into from
Jan 9, 2025

Conversation

kirpichenko
Copy link
Collaborator

No description provided.

@@ -178,7 +180,17 @@ export class Subscriber<T = unknown> {
asyncCallback: (msg: IParsedMessage<T>, info: IMessageInfo) => Promise<void>,
): (message: Message) => void {
const asyncMessageProcessor = async (message: Message) => {
const dataParsed = await this.parseData(message)
const dataParsed = await this.parseData(message).catch(e => {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is the only relevant change. Other's are just formatting

@eugene-taran eugene-taran reopened this Dec 31, 2024
@eugene-taran eugene-taran reopened this Jan 9, 2025
@kirpichenko kirpichenko merged commit ad16195 into master Jan 9, 2025
5 checks passed
@kirpichenko kirpichenko deleted the alpha branch January 9, 2025 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants